home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _8EAD47BFDE7542F6A98EE56025F23DB4 < prev    next >
Encoding:
Text File  |  2004-04-29  |  559 b   |  37 lines

  1.  
  2. regc(2, "COMBINED_XFORM")
  3.  
  4. regc(12, "FOG_PARAMS")
  5.  
  6. vshader("
  7.  
  8. #define point        v0
  9. #define normal        v1
  10. #define tangent        v2
  11. #define tcoord        v3
  12.  
  13. #define fogp    c12
  14.  
  15. #include    <fog.inc>
  16.  
  17.     vs_1_1
  18.  
  19.     dcl_position    point
  20.     dcl_normal    normal
  21.     dcl_tangent    tangent
  22.     dcl_texcoord    tcoord
  23.  
  24.     ; output position
  25.     m4x4    oPos, point, c2
  26.  
  27.     ; output texcoords
  28.     mov        oT0, tcoord           // color
  29.     mov     oT1, tcoord        // dirt
  30.     mov     oT2, tcoord        // lights masks
  31.  
  32.     ; calc fog
  33.        dp4    r0.x, point, c4
  34.        FOG(r0.x, fogp, r10)
  35. ")
  36.  
  37.